/* General styling for the tagline */
#reqbtn:hover {
    background-color:#F7A600;
    color: white;
    font-weight: bolder;
}
.reqbtn:hover {
    background-color:#F7A600 !important;
    color: white;
    font-weight: bolder;
}
#reqbtn{
    background-color:#334391;
    color:white;
    min-width: 150px !important;
}

/* Button container styling */
.buttonContainer {
    display: flex;

    gap: 20px;
    flex-wrap: wrap; /* Ensures buttons wrap on smaller screens */
    margin-top: 36px;
    margin-bottom: 36px;
}

/* Button styling */
.themeBtn {
    display: flex;
    background-color: #334391;
    
   
    border-radius: 5px;
    text-decoration: none;
 
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
   
}

.themeBtn:hover {
    background-color:  #F7A600 !important;
    color:white;
}

.themeBtn .btnIcon svg {
    margin-left: 10px;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .homeSectionTagline {
        font-size: 0.9rem;
        text-align: left; /* Aligns text for better readability on small devices */
    }

    .buttonContainer {
        gap: 10px;
    }

    .themeBtn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}